home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
dev
/
misc
/
egs.lha
/
EGS
/
EGS_Devels
/
Examples
/
EGS_Requester
/
includes.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-17
|
1KB
|
60 lines
/*
* Extra Amiga includes
*/
#define __DICE_INLINE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <exec/types.h>
#include <exec/memory.h>
#include <exec/io.h>
#include <exec/nodes.h>
#include <exec/interrupts.h>
#include <exec/devices.h>
#include <devices/input.h>
#include <devices/inputevent.h>
#include <proto/all.h>
/*
* These are all EGS includes
*
*/
#include <egs/egs.h>
#include <egs/egsblit.h>
#include <egs/egslayers.h>
#include <egs/egsgfx.h>
#include <egs/egsintui.h>
#include <egs/egsgadbox.h>
#include <egs/egsrequest.h>
#include <egs/egb/gbmenuselect.h>
#include <egs/egb/gbradio.h>
#include <egs/egb/gbscrollbox.h>
#include <egs/egb/gbselect.h>
#include <egs/egb/gbsets.h>
#include <egs/egb/gbtextinfo.h>
/*
* Include proto files
* These include the pragma files.
*/
#include <egs/proto/egs.h>
#include <egs/proto/egsblit.h>
#include <egs/proto/egslayers.h>
#include <egs/proto/egsgfx.h>
#include <egs/proto/egsintui.h>
#include <egs/proto/egsgadbox.h>
#include <egs/proto/egsrequest.h>
#include <egs/proto/gbmenuselect.h>
#include <egs/proto/gbradio.h>
#include <egs/proto/gbscrollbox.h>
#include <egs/proto/gbselect.h>
#include <egs/proto/gbsets.h>
#include <egs/proto/gbtextinfo.h>
/*
*/